@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
    outline: none;
    border: none;
    text-decoration: none;
    transition: 0.3s linear;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
    overflow-x: hidden;
    background: #f6f6f9;
}

*::selection {
    background-color: var(--white);
    color: var(--black);
}

::-webkit-scrollbar {
    height: 0.2rem;
    width: 0.6rem;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #292a2a;
    border-radius: 1rem;
}


.header {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 20px;
    background-color: #fff;
}

.logo {
    max-width: 600px;
    height: auto;
}

.header-text {
    margin-top: 1rem;
    font-size: 2.2em;
    color: #333;
    text-align: justify;
    max-width: 50%;
    font-weight: bolder;
}

.card-img {
    width: 100%;
    aspect-ratio: 1 / 1.5;
    object-fit: cover;

}

.card-img-2 {
    width: 100%;
    aspect-ratio: 0.9/ 1;
    object-fit: cover;
}

.card-img-3 {
    width: 100%;
    aspect-ratio: 1/1; 
  
}



.gallery-card {
    margin-bottom: 1rem;
}

.form-control {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-control,
.btn {
    border-radius: .25rem;
}

.contact-form {
    max-width: 1000px;
    margin: auto;
    padding: 2rem;
}

.highlighted-title {
    background-color: #28a745;
    color: white;
    padding: 0.5rem 1rem;
    display: inline-block;
    margin-top: 19px;
    font-size: 40px !important;
    font-weight: 600;
}

.text-bg-success {
    background-color: #28a745;
    color: white !important;
}


.text-justify {
    text-align: justify;
    font-weight: 500;
    font-size: 1.1rem;
}

.custom-btn {
    background-image: linear-gradient(to right, #28a745, #007bff);
    border: none;
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    transition: 0.2s;
}

.custom-btn:hover {
    background-image: linear-gradient(to right, #0056b3, #218838);
}

/* Estilo para dispositivos com largura até 768px (tablets e smartphones) */
@media screen and (max-width: 768px) {
    .header {
        flex-direction: column;
        /* Muda a direção do flex para coluna */
    }

    .logo {
        max-width: 100%;

        margin-bottom: 1rem;

    }

    .header-text {
        font-size: 1.8em;
     
        text-align: center;
       
        max-width: 100%;
        
    }
}

@media screen and (max-width: 480px) {
    .header {
        padding: 10px;
        /* Reduz o espaçamento interno */
    }

    .header-text {
        font-size: 1.5em;
        /* Diminui ainda mais o tamanho da fonte para pequenos dispositivos */
    }
}